php forum
php mysql forum
php mysql smarty
 
Topic Options
#276179 - 07/07/04 10:41 PM Beta-[6.5] Active Topic Search Options v2.5
oceanwest Offline
Enthusiast

Registered: 04/25/02
Posts: 490
Loc: Escondido, CA
Mod Name / Version: Active Topic Search Options v2.5 <br /> <br />Description: The active topic link is great now 6.5 we can show all posts or only the topic starter (like in .classic) and have the ability to turn on or off the body preview. <br /> <br />I have included a the ubbt_registerednav.tmpl, ubbt_unregisterednav.tmpl and a new active.php script that will give the users a popup menu in the menubar so users can choose for them self how they want to view the active topics. <br /> <br />This new version will allow the users to set their default options. <br /> <br />Working Under: UBB.Threads 6.5 <br /> <br />Mod Status: Beta <br /> <br />Any pre-requisites: 6.5b4 <br /> <br />Author(s): oceanwest <br /> <br />Date: 07/07/04 <br /> <br />Credits: scroungr & threads dev <br /> <br />Files Altered: ubbt_registerednav.tmpl, ubbt_unregisterednav.tmpl, editdisplay.tmpl, editdisplay.php, changedisplay.php, language/english/active.php, ubbt.inc.php, <br /> <br />New Files: language/english/active.php, active.php <br /> <br />Database Altered: YES add 1 field to w3t_Users field name U_ActiveTopic <br /> <br />Info/Instructions: Modify the templates add the field to the db, and create the new script. <br /> <br />Disclaimer: Please backup every file that you intend to modify. <br />If the modification modifies the database, it's a good idea to backup your database before doing so. <br /> <br />Note: If you modify your UBB.Threads code, you may be giving up your right for "official" support from Infopop.If you need official support, you'll need to restore unmodified files.


Attachments
116537-ActiveTopics2.5.txt (84 downloads)



Edited by oceanwest (07/12/04 09:29 AM)

Top
#276180 - 07/07/04 10:47 PM Re: Beta-[6.5] Active Topic Search Options v2.0 [Re: sdf123]
JoshPet Offline
I type Like navaho

Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
Nice <img src="http://www.ubbdev.com/forum/images/graemlins/waytogo.gif" alt="" />
_________________________
Joshua Pettit
www.JoshuaPettit.com
My abilities are for hire.

Top
#276181 - 07/08/04 09:04 PM Re: Beta-[6.5] Active Topic Search Options v2.5 [Re: Daine]
oceanwest Offline
Enthusiast

Registered: 04/25/02
Posts: 490
Loc: Escondido, CA
I updated the attachment and version number to v2.5 because I reworked some of the instructions and created a new language file also members can now find "My Posts" instead of doing a search or looking for the link on the showprofile.php. <br /> <br />Enjoy <img src="http://www.ubbdev.com/forum/images/graemlins/grin.gif" alt="" />


Edited by oceanwest (07/09/04 04:36 PM)
_________________________
FM Forums
Largest Online FileMaker Community
http://www.fmforums.com

Top
#276182 - 07/12/04 01:32 AM Re: Beta-[6.5] Active Topic Search Options v2.5 [Re: sdf123]
oceanwest Offline
Enthusiast

Registered: 04/25/02
Posts: 490
Loc: Escondido, CA
In this attachment you can add the ability for users to go to "Active Topics" as their main page. Instead of only My Home / Main Index. <br /><br />Enjoy


Attachments
116708-ActiveTopicStartPage.txt (11 downloads)

_________________________
FM Forums
Largest Online FileMaker Community
http://www.fmforums.com

Top
#276183 - 07/12/04 03:48 AM Re: Beta-[6.5] Active Topic Search Options v2.5 [Re: sdf123]
Pasqualist Offline
Member

Registered: 01/30/03
Posts: 285
Loc: Amsterdam, The Netherlands
very very nice! Thanks <img src="http://www.ubbdev.com/forum/images/graemlins/waytogo.gif" alt="" />

Top
#276184 - 07/12/04 01:06 PM Re: Beta-[6.5] Active Topic Search Options v2.5 [Re: 10k]
oceanwest Offline
Enthusiast

Registered: 04/25/02
Posts: 490
Loc: Escondido, CA
Help....<br />This code that I add to ubbt.inc.php<br />to automatically go to active topics on login prevents<br />them from accessing their My Home. <br /><br />What did I do wrong?<br /><br />
Code:
<br />	 	if ($startpage == "at") {<br />			$option = $user['U_ActiveTopic'];<br />		<br />	 // -------------<br />// Search The Forums<br />	if ($option == "1") {<br />	header("Location: {$config['phpurl']}/search.php?Cat=0");<br />	}<br /><br />// -------------<br />// Active topics - Main No Preview<br />	if ($option == "2") {<br />	header("Location: {$config['phpurl']}/dosearch.php?Cat=0&amp;Forum=All_Forums&amp;Words=&amp;daterange=1&amp;newertype=d&amp;newerval=1&amp;Limit=25&amp;topic=1&amp;fromsearch=1&amp;bodyprev=0");<br />	}<br /><br />// -------------<br />// Active topics - Main w/ Preview<br />	if ($option == "3") {<br />	header("Location: {$config['phpurl']}/dosearch.php?Cat=0&amp;Forum=All_Forums&amp;Words=&amp;daterange=1&amp;newertype=d&amp;newerval=1&amp;Limit=25&amp;topic=1&amp;fromsearch=1&amp;bodyprev=1");<br />	}<br /><br />// -------------<br />// Active topics - All Posts No Preview<br />	if ($option == "4") {<br />	header("Location: {$config['phpurl']}/dosearch.php?Cat=0&amp;Forum=All_Forums&amp;Words=&amp;daterange=1&amp;newertype=d&amp;newerval=1&amp;Limit=25&amp;topic=0&amp;fromsearch=1&amp;bodyprev=0");<br />	}<br /><br />// -------------<br />// Active topics - All Posts w/ Preview<br />	if ($option == "5") {<br />	header("Location: {$config['phpurl']}/dosearch.php?Cat=0&amp;Forum=All_Forums&amp;Words=&amp;daterange=1&amp;newertype=d&amp;newerval=1&amp;Limit=25&amp;topic=0&amp;fromsearch=1&amp;bodyprev=1");<br />	}<br />}
_________________________
FM Forums
Largest Online FileMaker Community
http://www.fmforums.com

Top
#276185 - 07/15/04 10:38 AM Re: Beta-[6.5] Active Topic Search Options v2.5 [Re: sdf123]
oceanwest Offline
Enthusiast

Registered: 04/25/02
Posts: 490
Loc: Escondido, CA
ok it works now needed to fix this in the ubbt_registerednav.tmpl<br /><br /><a href= "$phpurl/myhome.php?Cat=$Cat">{$ubbt_lang['MY_HOME']}</a>
_________________________
FM Forums
Largest Online FileMaker Community
http://www.fmforums.com

Top



Moderator:  Ian_W 
Latest Posts
[7.2.1] - Naked shoutbox
by bellaonline
05/05/12 05:00 PM
[7.x] Stop Forum Spam Integration v0.4
by bellaonline
05/05/12 03:53 PM
Shout Box

(Views)Popular Topics
Known public proxy servers 1689885
Integrated Index Page (IIP) 5.3.1 555705
Finished-[6.5.2] Games Arcade Deluxe v1.9 501236
Integrated Index Page (IIP) 5.1.1 415112
TLD Bv2.1 Released - Threads Links Directory 396822
[6.0x] Who's Online 4.0.0 [Finished] 389412
Finished-[6.5.1] Integrated Index Page (IIP) 6.5 330423
Q & A 298663
Slash UBB 266936
[6.3.x] [beta] Hit Hack 2.0 227970
Forum Stats
13621 Members
59 Forums
37191 Topics
295716 Posts

Max Online: 686 @ 06/28/07 07:04 AM

 

 

 
fusionbb message board php hacks